home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / gfx / misc / graphtal1293.lha / Graphtal.Amiga / IMPORTANT.README.AMIGA < prev    next >
Text File  |  1993-12-13  |  399b  |  28 lines

  1.  
  2.  
  3.     I M P O R T A N T   N O T E
  4.     ===========================
  5.  
  6.     If you want to compile graphtal on the amiga with gcc-233
  7.     replace the following lines in /os-includes/devices/timer.h
  8.  
  9.  
  10.         struct timeval {
  11.             ULONG tv_secs;
  12.             ULONG tv_micro;
  13.         };
  14.  
  15.     with
  16.  
  17.         #ifndef _SYS_TIME_H_
  18.         struct timeval {
  19.             ULONG tv_secs;
  20.             ULONG tv_micro;
  21.         };
  22.         #endif
  23.  
  24.  
  25.     to avoid a redefinition of timeval !
  26.  
  27.  
  28.